COME FROM - определение. Что такое COME FROM
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое COME FROM - определение

PROGRAMMING LANGUAGE CONTROL FLOW STRUCTURE
Come from; COME FROM; Comefrom
Найдено результатов: 10979
COME FROM         
<programming, humour> A semi-mythical language construct dual to the "go to"; "COME FROM" <label> would cause the referenced label to act as a sort of trapdoor, so that if the program ever reached it, control would quietly and automagically be transferred to the statement following the "COME FROM". "COME FROM" was first proposed in R.L. Clark's "A Linguistic Contribution to GOTO-less programming", which appeared in a 1973 Datamation issue (and was reprinted in the April 1984 issue of "Communications of the ACM"). This parodied the then-raging "structured programming" holy wars (see considered harmful). Mythically, some variants are the "assigned COME FROM" and the "computed COME FROM" (parodying some nasty control constructs in Fortran and some extended BASICs). Of course, multitasking (or nondeterminism) could be implemented by having more than one "COME FROM" statement coming from the same label. In some ways the Fortran "DO" looks like a "COME FROM" statement. After the terminating statement number/"CONTINUE" is reached, control continues at the statement following the DO. Some generous Fortrans would allow arbitrary statements (other than "CONTINUE") for the statement, leading to examples like: DO 10 I=1,LIMIT C imagine many lines of code here, leaving the C original DO statement lost in the spaghetti... WRITE(6,10) I,FROB(I) 10 FORMAT(1X,I5,G10.4) in which the trapdoor is just after the statement labelled 10. (This is particularly surprising because the label doesn't appear to have anything to do with the flow of control at all!) While sufficiently astonishing to the unsuspecting reader, this form of "COME FROM" statement isn't completely general. After all, control will eventually pass to the following statement. The implementation of the general form was left to Univac Fortran, ca. 1975 (though a roughly similar feature existed on the IBM 7040 ten years earlier). The statement "AT 100" would perform a "COME FROM 100". It was intended strictly as a debugging aid, with dire consequences promised to anyone so deranged as to use it in production code. More horrible things had already been perpetrated in production languages, however; doubters need only contemplate the "ALTER" verb in COBOL. SCL on VME mainframes has a similar language construct called "whenever", used like this: whenever x=123345 then S; Meaning whenever variable x reached the value 123345 then execute statement S. "COME FROM" was supported under its own name for the first time 15 years later, in C-INTERCAL (see INTERCAL, retrocomputing); knowledgeable observers are still reeling from the shock. [Jargon File] (1998-04-19)
come from         
have as a source or birthplace.
COMEFROM         
In computer programming, COMEFROM (or COME FROM) is an obscure control flow structure used in some programming languages, originally as a joke. COMEFROM is the inverse of GOTO in that it can take the execution state from any arbitrary point in code to a COMEFROM statement.
Come from the Heart         
1989 SINGLE BY KATHY MATTEA
Come From the Heart
"Come from the Heart" is a country music song written by Richard Leigh and Susanna Clark and published in 1987. It is most known through the 1989 single by Kathy Mattea, released in conjunction with her album Willow in the Wind, though the song was first recorded and released on the 1987 Don Williams album Traces and also released in 1988 by Clark's husband on his album Old Friends.
Come from Away         
  • The Gerald Schoenfeld Theatre on Broadway during its run of ''Come from Away''
CANADIAN MUSICAL FIRST PRODUCED IN 2013
Come From Away
Come from Away is a Canadian musical, with book, music and lyrics by Irene Sankoff and David Hein. It is based on the events in the Newfoundland town of Gander during the week following the September 11 attacks, when 38 planes, carrying approximately 7,000 passengers, were ordered to land unexpectedly at Gander International Airport.
Where the Toys Come From         
1983 FILM BY THEODORE THOMAS
Where The Toys Come From
Where the Toys Come From is a Disney special directed by Theodore Thomas and aired as part of Disney Studio Showcase series of specials on Disney Channel on December 3, 1983 and then released on video in November 1984.
Up from Where We've Come         
BOOK BY MUSICIAN CHARLES WRIGHT
Up: From where We've Come
Up from Where We've Come is a book by veteran musician Charles Wright who led the Watts 103rd Street Rhythm Band during the 1970s. It covers his early years, battling hardship and racism in America's South through to his future in music.
Come from the Shadows         
ALBUM BY JOAN BAEZ
Love Song To A Stranger; Come from the shadows; In the Quiet Morning
Come from the Shadows is the thirteenth studio album (and fifteenth overall) by Joan Baez, released in 1972. After recording for the independent label Vanguard for more than a decade, Baez signed with A&M, and attempted to point her career in a slightly more "commercial" direction (though the album still had overtly political overtones).
I've Come to Expect It from You         
1990 SINGLE BY GEORGE STRAIT
I've Come to Expect It From You
"I've Come to Expect It from You" is a song written by Buddy Cannon and Dean Dillon, and recorded by American country music artist George Strait. It was released in October 1990 as the third and final single from his album Livin' It Up.
Come In from the Rain (Andi Deris album)         
ALBUM BY ANDI DERIS
Come in from the Rain (Andi Deris album)
Come In from the Rain is the first solo album of Andi Deris, vocalist of the power metal band Helloween. It was released in 1997 and has a different sound from his band's albums, with a different style in each song.

Википедия

COMEFROM

In computer programming, COMEFROM (or COME FROM) is an obscure control flow structure used in some programming languages, originally as a joke. COMEFROM is the inverse of GOTO in that it can take the execution state from any arbitrary point in code to a COMEFROM statement.

The point in code where the state transfer happens is usually given as a parameter to COMEFROM. Whether the transfer happens before or after the instruction at the specified transfer point depends on the language used. Depending on the language used, multiple COMEFROMs referencing the same departure point may be invalid, be non-deterministic, be executed in some sort of defined priority, or even induce parallel or otherwise concurrent execution as seen in Threaded Intercal.

A simple example of a "COMEFROM x" statement is a label x (which does not need to be physically located anywhere near its corresponding COMEFROM) that acts as a "trap door". When code execution reaches the label, control gets passed to the statement following the COMEFROM. This may also be conditional, passing control only if a condition is satisfied, analogous to a GOTO within an IF statement. The primary difference from GOTO is that GOTO only depends on the local structure of the code, while COMEFROM depends on the global structure – a GOTO transfers control when it reaches a line with a GOTO statement, while COMEFROM requires scanning the entire program or scope to see if any COMEFROM statements are in scope for the line, and then verifying if a condition is hit. The effect of this is primarily to make debugging (and understanding the control flow of the program) extremely difficult, since there is no indication near the line or label in question that control will mysteriously jump to another point of the program – one must study the entire program to see if any COMEFROM statements reference that line or label.

Debugger hooks can be used to implement a COMEFROM statement, as in the humorous Python goto module; see below. This also can be implemented with the gcc feature "asm goto" as used by the Linux kernel configuration option CONFIG_JUMP_LABEL. A no-op has its location stored, to be replaced by a jump to an executable fragment that at its end returns to the instruction after the no-op.